const net/http.http2frameHeaderLen

12 uses

	net/http (current package)
		h2_bundle.go#L1350: const http2frameHeaderLen = 9
		h2_bundle.go#L1552: 		buf := make([]byte, http2frameHeaderLen)
		h2_bundle.go#L1566: 	_, err := io.ReadFull(r, buf[:http2frameHeaderLen])
		h2_bundle.go#L1609: 	headerBuf   [http2frameHeaderLen]byte
		h2_bundle.go#L1688: 	length := len(f.wbuf) - http2frameHeaderLen
		h2_bundle.go#L9805: 	return http2frameHeaderLen+settingSize*len(s) <= max
		h2_bundle.go#L9841: 	return http2frameHeaderLen+len(w.p) <= max
		h2_bundle.go#L9854: func (hp http2handlerPanicRST) staysWithinBuffer(max int) bool { return http2frameHeaderLen+4 <= max }
		h2_bundle.go#L9860: func (se http2StreamError) staysWithinBuffer(max int) bool { return http2frameHeaderLen+4 <= max }
		h2_bundle.go#L9869: 	return http2frameHeaderLen+len(w.pf.Data) <= max
		h2_bundle.go#L9878: func (http2writeSettingsAck) staysWithinBuffer(max int) bool { return http2frameHeaderLen <= max }
		h2_bundle.go#L10055: func (wu http2writeWindowUpdate) staysWithinBuffer(max int) bool { return http2frameHeaderLen+4 <= max }